home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_gtk / INCLUDE / GTK / GTKWINDO.{3C < prev   
Text File  |  1999-09-17  |  5KB  |  145 lines

  1. /* GTK - The GIMP Toolkit
  2.  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Library General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Library General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Library General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19.  
  20. /*
  21.  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
  22.  * file for a list of people on the GTK+ Team.  See the ChangeLog
  23.  * files for a list of changes.  These files are distributed with
  24.  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
  25.  */
  26.  
  27. #ifndef __GTK_WINDOW_H__
  28. #define __GTK_WINDOW_H__
  29.  
  30.  
  31. #include <gdk/gdk.h>
  32. #include <gtk/gtkaccelgroup.h>
  33. #include <gtk/gtkbin.h>
  34. #include <gtk/gtkenums.h>
  35. #include <gtk/gtkwidget.h>
  36.  
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif /* __cplusplus */
  40.  
  41.  
  42. #define GTK_TYPE_WINDOW            (gtk_window_get_type ())
  43. #define GTK_WINDOW(obj)            (GTK_CHECK_CAST (obj, GTK_TYPE_WINDOW, GtkWindow))
  44. #define GTK_WINDOW_CLASS(klass)        (GTK_CHECK_CLASS_CAST (klass, GTK_TYPE_WINDOW, GtkWindowClass))
  45. #define GTK_IS_WINDOW(obj)        (GTK_CHECK_TYPE (obj, GTK_TYPE_WINDOW))
  46. #define GTK_IS_WINDOW_CLASS(klass)    (GTK_CHECK_CLASS_TYPE (klass, GTK_TYPE_WINDOW))
  47.  
  48.  
  49. typedef struct _GtkWindow       GtkWindow;
  50. typedef struct _GtkWindowClass  GtkWindowClass;
  51.  
  52. struct _GtkWindow
  53. {
  54.   GtkBin bin;
  55.  
  56.   gchar *title;
  57.   gchar *wmclass_name;
  58.   gchar *wmclass_class;
  59.   GtkWindowType type;
  60.  
  61.   GtkWidget *focus_widget;
  62.   GtkWidget *default_widget;
  63.   GtkWindow *transient_parent;
  64.  
  65.   gushort resize_count;
  66.   guint allow_shrink : 1;
  67.   guint allow_grow : 1;
  68.   guint auto_shrink : 1;
  69.   guint handling_resize : 1;
  70.   guint position : 2;
  71.  
  72.   /* The following flag is initially TRUE when a window is mapped.
  73.    * and will be set to FALSE after it is first positioned.
  74.    * It is also temporarily reset when the window's size changes.
  75.    * 
  76.    * When TRUE, we move the window to the position the app set.
  77.    */
  78.   guint use_uposition : 1;
  79.   guint modal : 1;
  80. };
  81.  
  82. struct _GtkWindowClass
  83. {
  84.   GtkBinClass parent_class;
  85.  
  86.   void (* set_focus)   (GtkWindow *window,
  87.             GtkWidget *focus);
  88. };
  89.  
  90.  
  91. GtkType    gtk_window_get_type                 (void);
  92. GtkWidget* gtk_window_new                      (GtkWindowType        type);
  93. void       gtk_window_set_title                (GtkWindow           *window,
  94.                         const gchar         *title);
  95. void       gtk_window_set_wmclass              (GtkWindow           *window,
  96.                         const gchar         *wmclass_name,
  97.                         const gchar         *wmclass_class);
  98. void       gtk_window_set_policy               (GtkWindow           *window,
  99.                         gint                 allow_shrink,
  100.                         gint                 allow_grow,
  101.                         gint                 auto_shrink);
  102. void       gtk_window_add_accel_group          (GtkWindow           *window,
  103.                         GtkAccelGroup        *accel_group);
  104. void       gtk_window_remove_accel_group       (GtkWindow           *window,
  105.                         GtkAccelGroup        *accel_group);
  106. void       gtk_window_set_position             (GtkWindow           *window,
  107.                         GtkWindowPosition    position);
  108. gint       gtk_window_activate_focus           (GtkWindow           *window);
  109. gint       gtk_window_activate_default           (GtkWindow           *window);
  110.  
  111. void       gtk_window_set_transient_for        (GtkWindow           *window, 
  112.                         GtkWindow           *parent);
  113. void       gtk_window_set_geometry_hints       (GtkWindow           *window,
  114.                         GtkWidget           *geometry_widget,
  115.                         GdkGeometry         *geometry,
  116.                         GdkWindowHints       geom_mask);
  117. /* The following differs from gtk_widget_set_usize, in that
  118.  * gtk_widget_set_usize() overrides the requisition, so sets a minimum
  119.  * size, while this only sets the size requested from the WM.
  120.  */
  121. void       gtk_window_set_default_size         (GtkWindow           *window,
  122.                         gint                 width,
  123.                         gint                 height);
  124.  
  125. /* If window is set modal, input will be grabbed when show and released when hide */
  126. void       gtk_window_set_modal                (GtkWindow           *window,
  127.                                                 gboolean             modal);
  128.  
  129. /* --- internal functions --- */
  130. void       gtk_window_set_focus                (GtkWindow           *window,
  131.                         GtkWidget           *focus);
  132. void       gtk_window_set_default              (GtkWindow           *window,
  133.                         GtkWidget           *defaultw);
  134. void       gtk_window_remove_embedded_xid      (GtkWindow           *window,
  135.                                 guint                xid);
  136. void       gtk_window_add_embedded_xid         (GtkWindow           *window,
  137.                         guint                xid);
  138.  
  139. #ifdef __cplusplus
  140. }
  141. #endif /* __cplusplus */
  142.  
  143.  
  144. #endif /* __GTK_WINDOW_H__ */
  145.